home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 06 - 1990 / 06.02 Feb 90 / FuzzyBrush source / Fuzzy.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-01  |  241 b   |  16 lines  |  [TEXT/KAHL]

  1. /* Fuzzy.h */
  2.  
  3. #define        nil            0
  4. #define        behind        -1
  5. #define        fuzzy        1
  6. #define        furry        2
  7. #define        crosshatch    3
  8.  
  9. typedef struct
  10. {
  11.     MenuHandle        theMenu;
  12.     short            whichEffect;
  13.     short            brushSize;
  14. }  FuzzyData, *FuzzyDataPtr, **FuzzyDataHandle;
  15.  
  16.